how to remove integer from string in python

49

how to remove integer from string in python -

>>> s = '12abcd405'
>>> result = ''.join([i for i in s if not i.isdigit()])
>>> result
'abcd'

Comments

Submit
0 Comments